home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Libraries
/
usr (gcc 1.37 libs)
/
mac
/
isatty.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-12-08
|
126b
|
9 lines
#include <fcntl.h>
#include "crtlocal.h"
int isatty(int fd)
{
mysleep(1);
return (crt_fd_tab[fd].flags & O_PIPE) != 0;
}